home *** CD-ROM | disk | FTP | other *** search
- program Ccfmgr8;
-
- uses
- Forms,
- Ufmgr8 in 'UFMGR8.PAS' {CCFileMgrForm},
- Dddfunit in 'DDDFUNIT.PAS' {DestDDForm},
- Cfmpfun in 'CFMPFUN.PAS' {CCFMPropsForm},
- Drwsutl2 in 'DRWSUTL2.PAS',
- Drwsutl1 in 'DRWSUTL1.PAS';
-
- {$R *.RES}
-
- begin
- Application.Title := 'CC File Center';
- Application.CreateForm(TCCFileMgrForm, CCFileMgrForm);
- Application.CreateForm(TDestDDForm, DestDDForm);
- Application.CreateForm(TCCFMPropsForm, CCFMPropsForm);
- Application.Run;
- end.
-